home *** CD-ROM | disk | FTP | other *** search
- ;SERF.ASM B.Kauler
- ;required for linkage demo with MASTREXE and SLAVEXE.
- ;contains data for use by other modules.
- ;note data segment given same name as other modules.
- ;note no code (instructions) to access local data, so no
- ;need for an ASSUME DS:DATA directive.
- ;......................................................
- public data1
- ;......................................................
- data segment byte public 'data'
- data1 db "this data is in third module",0Ah,0Dh,"$"
- ;more data could be put here.....
- ;....
- data ends
- end ;no label
-